home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacHack 2000
/
MacHack 2000.toast
/
pc
/
The Hacks
/
Softshoe
/
Lisa's Mac Parts
/
Windows
/
WindowManagerUser.cp
< prev
next >
Wrap
Text File
|
2000-06-23
|
463b
|
28 lines
// WindowManagerUser.cp
#ifndef WindowManagerUser_h
#include "WindowManagerUser.h"
#endif
#ifndef FontManagerUser_h
#include "FontManagerUser.h"
#endif
#ifndef ProcessInfo_h
#include "ProcessInfo.h"
#endif
#include <Windows.h>
WindowManagerUser::WindowManagerUser()
{
static bool initialized = false;
if ( !initialized )
{
Assert( !ProcessInfo::Application().OnlyBackground() );
FontManagerUser();
InitWindows();
initialized = true;
}
}